home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / comm / maxs / MaxRexx.lha / MAXREXX / Examples / subscript.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1980-03-10  |  514 b   |  29 lines

  1. /*
  2.  
  3. subscript.rexx - called from Mainscript.rexx
  4.  
  5. Min MaxRexx Version 1.2
  6. */
  7.  
  8. line=arg(1)
  9. port='ADDRESS MAXSERVE'line
  10. Interpret port
  11. OPTIONS RESULTS
  12.  
  13. $NEWLINE
  14. $FCOLOUR 3
  15. $CENTRE '3,This piece of text lies in the second script'
  16. $NEWLINE
  17. $FCOLOUR 5
  18. $CENTRE '6,Press Any Key to Return to the BBS!'
  19. $HOTKEY
  20.  
  21.  
  22. /*Note, that you must comment out the $END from any scripts which you execute
  23. from within another MaxRexx door, or this would cause MaxRexx to finish here
  24. instead of returning to the main script*/
  25.  
  26.  
  27. /*$END*/
  28.  
  29.